home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / CDROM / Amiga_MO_FAQ / DOSDrivers-5¼ / SFS / SFS650 < prev    next >
Text File  |  1999-06-21  |  860b  |  34 lines

  1. /* $VER: SFS650 40.1 (21.6.99)
  2.  *
  3.  * 650MB 5¼" MO file system entry
  4.  *
  5.  * This file enables SFS on a 650MB 5¼" MO disk cartridge.
  6.  */
  7.  
  8. /* 650MB 5¼" MO disks have 314569 1024-byte sectors on each side. 314569 is a
  9.    prime number, so if all sectors are to be used, must have BlocksPerTrack = 1 */
  10.  
  11. FileSystem    = L:SmartFileSystem
  12. Flags        = 0
  13. Surfaces    = 1
  14. BlocksPerTrack    = 1
  15. SectorsPerBlock    = 1
  16. SectorSize    = 1024
  17. Mask        = 0x7FFFFFFE    /* Change to suit your system and SCSI controller */
  18. MaxTransfer    = 0xFFFFFFFE    /* Change to suit your system and SCSI controller */
  19. Reserved    = 2
  20. Interleave    = 0
  21. LowCyl        = 0
  22. HighCyl        = 314568
  23. Buffers        = 128        /* Number of 1024-byte filesystem buffers */
  24. BufMemType    = 1
  25. StackSize    = 600
  26. Priority    = 10
  27. GlobVec        = -1
  28.  
  29. /* The Device and Unit fields are controlled by tooltypes in the SFS650 icon.
  30.  *
  31.  * Device    = scsi.device
  32.  * Unit        = 4
  33.  */
  34.